home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
vol_400
/
428_02
/
libsrc
/
vrepc.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1994-03-13
|
346 b
|
22 lines
/*
** vrepc.c
**
** Pictor, Version 1.51, Copyright (c) 1992-94 SoftCircuits
** Redistributed by permission.
*/
#include "pictor.h"
/*
** Prints a character at the current video position for the
** specified number of columns.
*/
void vrepc(char c,int count)
{
int i;
for(i = 0;i < count;i++)
vputc(c);
} /* vrepc */